home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue70 / DBEX / Listing8.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-04-30  |  248 b   |  9 lines

  1. function dbxErrorCodeToStr(intdbxError: integer): string;
  2. begin
  3.   if (intdbxError > 0) and 
  4.   (intdbxError <=  DBX_MAXSTATICERRORS) then
  5.     Result:=DBXError[intdbxError]
  6.   else
  7.     Result:='Unknown error ('+IntToStr(intdbxError)+')';
  8. end;
  9.